Skip to content

Instantly share code, notes, and snippets.

@mileskrell
mileskrell / build.gradle.kts
Created April 19, 2019 04:26
Example of declaring Android signing configs using Gradle Kotlin DSL
android {
signingConfigs {
getByName("debug") {
keyAlias = "debug"
keyPassword = "my debug key password"
storeFile = file("/home/miles/keystore.jks")
storePassword = "my keystore password"
}
create("release") {
keyAlias = "release"
@adamshack
adamshack / SFSymbols.swift
Created January 13, 2023 05:51
SwiftUI Images for Apple System graphics from the SF Symbol Set (version 4.0)
//
// SFSymbols.swift
//
// Created from SF Symbols (Version 4.0 [80])
// Copyright ©2019-2022 Apple Inc.
//
import SwiftUI
public enum SFSymbols {}
@justloop
justloop / playlist.m3u
Last active February 7, 2026 03:22
playlist.m3u
This file has been truncated, but you can view the full file.
#EXTINF:0 group-title="(AF) Afghanistan",1 TV | SD (AF)
http://kingtveu.com:25461/live/next/next/21789.ts
#EXTINF:0 group-title="(AF) Afghanistan",1 TV | SD (AF)
http://live1.livetvindia.co.in:8000/live/0001_jshdfkbjsd/0001_jshdfkbjsd/2562.ts
#EXTINF:0 group-title="(AF) Afghanistan",2STV | SD (AF)
http://kingtveu.com:25461/live/next/next/16697.ts
#EXTINF:0 group-title="(AF) Afghanistan",ABN TV | SD (AF)
http://kingtveu.com:25461/live/next/next/16672.ts
#EXTINF:0 group-title="(AF) Afghanistan",ABN TV | SD (AF)
@antirez
antirez / codex_skill.md
Last active February 7, 2026 03:16
CLAUDE_CODEX_SKILL.md
name description disable-model-invocation
codex
Use OpenAI Codex CLI for complex debugging, code analysis, or when stuck on difficult problems. Invokes Codex with a file-based question/answer pattern.
true

Using Codex for Complex Debugging

When you encounter a difficult problem that would benefit from a second perspective or deep analysis, use Codex via the file-based pattern.

@burkeholland
burkeholland / architect.agent.md
Last active February 7, 2026 03:06
Ultralight Orchestration
name description model
The Architect
Opus and Codex working together
claude-opus-4.6

You are an architect agent powered by Claude Opus 4.6. Instead, you plan, decompose, and delegate all implementation work to the subagents.

All coding tasks should be given to the Coder agent.

@s-ilent
s-ilent / foveated.md
Last active February 7, 2026 03:06
Foveated Rendering Guide

How to Get Foveated Rendering

An Easy Guide

What's foveated rendering?

Here is a simple explanation.

In modern VR headsets, rendering resolutions get higher with each generation. Higher rendering resolutions mean your GPU has to draw more pixels, which means worse performance but higher image quality. But what if there was a way to only render high resolutions for the part of the screen you're actually looking at? Foveated rendering is a name for a bunch of techniques that accomplish this. They render the part of the screen in your VR headset you're currently looking at at full detail, and render everything else at lower detail, so your GPU does less work.

This is not as simple as flicking a switch, but in this guide, I'll try and make it as easy as possible to understand what's going on.

How do I use foveated rendering?

First off, you must have a headset with eye tracking. For this guide, we'll assume you have a PlayStation VR2 with [PSVR2Toolkit](https://github.com/BnuuySolutions/PSVR2Toolk

@ruvnet
ruvnet / APM.md
Last active February 7, 2026 03:05
Agent Package Management

Introduction: Agent Algorithm Repository

In the rapidly evolving field of artificial intelligence, the need for a comprehensive and structured repository for algorithms designed for intelligent agents has become increasingly important.

The Agent Algorithm Repository aims to address this need by providing a centralized platform for discovering, sharing, and utilizing a wide range of algorithms. This repository is designed to be language-agnostic, ensuring compatibility with various programming languages and promoting a standardized approach to algorithm description, documentation, and distribution.

The repository facilitates the following key objectives:

  1. Language Agnosticism: By supporting algorithms implemented in any programming language, the repository ensures broad applicability and ease of integration across different technology stacks.
@luanwolf
luanwolf / DECOMPILING_AN_ELECTRON_APP.md
Created April 20, 2024 03:22
How to decompile an Electron app

Let me tell you how easy it is to decompile an Electron app (that's closed source).

Prerequisites

Decompilation

First of all, you find the install path of your Electron app. If you found it, find the resources folder. If you found it, you'll have to install asar globally, by running:

@rafaballerini
rafaballerini / style.css
Created November 27, 2024 18:53
CSS para aula 1 de Javascript
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #331F19; /* Fundo neutro */
}
.container {